实现解压的要求:
1、判断压缩包是否存在
2、判断是不是压缩包格式
3、如果解压后的文件名字与已有的文件名字相同,要与已有的文件进行比较
4、解压后的文件与已有文件比较:压缩包中没有的不修改,压缩包中有的,已有的文件中没有则新建,若两个都有,则把已有的文件删除,只留压缩包中的。
public class Test01 {
public void unZip(String zipfile) {
// 检查是否是zip文件,并判断文件是否存在
checkFileName(zipfile);
File zfile = new File(zipfile);
// 获取待解压文件的父路径
String Parent = zfile.getParent() + "/";
Charset charset = Charset.forName("utf-8");// 默认UTF-8
ZipInputStream zis = null;
try {
zis = new ZipInputStream(new FileInputStream(zipfile), charset);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} // 输入源zip路径
ZipEntry entry = null;
BufferedOutputStream bos = null;
try {
while ((entry = zis.getNextEntry()) != null) {
if (entry.isDirectory()) {
File filePath = new File(Parent + entry.getName());
// 如果目录不存在,则创建
if (!filePath.exists()) {
filePath.mkdirs();
}
} else {
File filePath = new File(Parent + entry.getName());
if (filePath.exists()) { // 如果文件存在,那么将文件删除
filePath.delete();
}
FileOutputStream fos = new FileOutputStream(Parent + entry.getName());
bos = new BufferedOutputStream(fos);
byte buf[] = new byte[1024];
int len;
while ((len = zis.read(buf)) != -1) {
bos.write(buf, 0, len);
}
zis.closeEntry();
// 关闭的时候会刷新
bos.close();
}
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
zis.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void checkFileName(String name) {
// 文件是否存在
if (!new File(name).exists()) {
System.err.println("要解压的文件不存在!");
System.exit(1);
}
// 判断是否是zip文件
int index = name.lastIndexOf(".");
String str = name.substring(index + 1);
if (!"zip".equalsIgnoreCase(str) ) {
System.err.println("不是zip,无法解压!");
System.exit(1);
}
}
}